home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Python 1.3.3 / stdwin / Ports / mac / menu.h < prev    next >
Text File  |  1995-12-21  |  354b  |  13 lines

  1. /* MAC STDWIN -- MENU DEFINITIONS. */
  2.  
  3. /* Note -- struct menu isn't defined here.
  4.    MENU * is taken to be equivalent to MenuPtr, whenever appropriate.
  5.    I know this is a hack -- I'll fix it later. */
  6.  
  7. struct menubar {
  8.     int nmenus;        /* Number of menus in the list */
  9.     MENU **menulist;    /* Pointer to list of MENU pointers */
  10. };
  11.  
  12. #define APPLE_MENU 32000
  13.